home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / qpack110.zip / QPACK.DOC < prev    next >
Text File  |  1992-07-01  |  8KB  |  246 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.                                 QPack v1.00 (01-July-1992)
  11.                               On-Demand Qmail Prepack System
  12.                               Copyright 1992 by Geoffrey Sy
  13.  
  14.  
  15.               QPack is supported by:
  16.  
  17.               Residence:                        Support BBS:
  18.  
  19.               Geoffrey Sy                       Simple Solutions Software
  20.               51 Wyatt Walk                         HST: (416) 287-9002
  21.               Toronto, Ontario  CANADA         HST/2400: (416) 286-8734
  22.               M5A 3T3
  23.  
  24.               ═════[INTRODUCTION]══════════════════════════════════════════
  25.               QPack provides on-demand pre-pack of QMail QWK packets.  This
  26.               saves toll charges for long distance users because they don't
  27.               have wait online while Qmail scans and compress messages.
  28.  
  29.               ═════[OVERVIEW]══════════════════════════════════════════════
  30.               There are 2 modules to the QPack package:
  31.  
  32.                 QPSETUP.EXE - Edits the QPack configuration file.
  33.                 QPACK.EXE   - The main door module.
  34.  
  35.               And some text/data files:
  36.  
  37.                 ONDISK       - Message to inform the user when a prepack is
  38.                                waiting on disk to be downloaded.
  39.                 WELCOME      - Logon Instruction for the user.
  40.                 MENU         - Main menu for QPack
  41.                 HELP         - Help data file
  42.                 GOODBYE      - Logoff Instruction for the user.
  43.                 QPACK.CNF    - QPack configuration file.
  44.                 QPACK.DOC    - QPack documentation (you're reading it).
  45.                 QPACK        - Example QPack door script (optional).
  46.                 QMAIL4       - Example of the modified QMAIL4 door script.
  47.                 REGISTER.FRM - For sending your contribution to the author.
  48.  
  49.               ═════[INSTALLATION]══════════════════════════════════════════
  50.               1) Put QPack into a sub-directory on the hard drive.
  51.               2) Tell QPSETUP the name of your file editors. To do this key
  52.                  in QPSETUP /s, that's QPSETUP with a "/" and a small "s".
  53.               3) Run QPSETUP.EXE to edit the QPACK configuration file.
  54.               4) Edit QMAIL4 door script file logic to branch to QPack when
  55.                  it is requested:
  56.  
  57.  
  58.  
  59.  
  60.  
  61.               _____________________________________________________________
  62.               QPack - On-Demand QMail Prepack - Documentation .......... 1
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.               ORIGINAL SCRIPT:
  71.  
  72.                  │ @ECHO OFF
  73.                  │ SET QMAIL4=C:\DOORS\QM4\QMAIL4.DAT
  74.                  │ %PCBDRIVE%\DOORS\QM4\QMAIL4
  75.                  │ BOARD%PCBNODE%
  76.  
  77.               MODIFIED SCRIPT:
  78.  
  79.                  │ @ECHO OFF
  80.                  │ SET QMAIL4=C:\DOORS\QM4\QMAIL4.DAT
  81.                  │ If (%PCBDOOR%)==(QPACK) GOTO QPACK
  82.                  │ %PCBDRIVE%\DOORS\QM4\QMAIL4
  83.                  │ GOTO END
  84.                  │
  85.                  │ :QPACK
  86.                  │ \DOORS\QPACK\QPACK \DOORS\QPACK\QPACK.CNF %PCBDIR%
  87.                  │ GOTO END
  88.                  │
  89.                  │ :END
  90.                  │ BOARD%PCBNODE%
  91.  
  92.               CHANGE DETAILS:
  93.  
  94.                  │ @ECHO OFF
  95.                  │ SET QMAIL4=C:\DOORS\QM4\QMAIL4.DAT
  96.                  │
  97.                  │ If (%PCBDOOR%)==(QPACK) GOTO QPACK   <= Add
  98.                  │
  99.                  │ %PCBDRIVE%\DOORS\QM4\QMAIL4
  100.                  │ GOTO END                             <= Add this
  101.                  │
  102.                  │ :QPACK                               <= Add these
  103.                  │ \DOORS\QPACK\QPACK \DOORS\QPACK\QPACK.CNF %PCBDIR%
  104.                  │ GOTO END
  105.                  │
  106.                  │ :END                                 <= Add this
  107.                  │ BOARD%PCBNODE%
  108.  
  109.               To run QPack, issue  the QPACK parameter when open  the Qmail
  110.               door:
  111.  
  112.                     QMAIL4 QPACK
  113.                     OPEN QMAIL4 QPACK
  114.                     OPEN # QPACK
  115.                          └── That's the QMail door number.
  116.  
  117.               That's  all that's required. The door is self maintained - no
  118.               maintenance  is required.   The menus,  welcome/goodbye, help
  119.               screens can be customized to your heart's desire.
  120.  
  121.  
  122.               _____________________________________________________________
  123.               QPack - On-Demand QMail Prepack - Documentation .......... 2
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.               ═════[OPTIONAL]══════════════════════════════════════════════
  132.               To shorten the length of the command the user has to type in,
  133.               a separate door script  for QPack is required.   To do  this,
  134.               create an entry in your door security list:
  135.  
  136.                                               USER DOOR
  137.                  Filename Password  Sec Login SYS  SYS  Shell
  138.                  ════════ ════════  ═══ ═════ ════ ════ ═════
  139.                  QPACK               0    N     N    N    Y
  140.  
  141.               Put the following information into the script:
  142.  
  143.                  @echo QMAIL4 QPACK>PCBSTUFF.KBD
  144.  
  145.               ═════[REGISTRATION/SUPPORT]══════════════════════════════════
  146.               If you have questions,  bugs, comments or suggestions, please
  147.               contact me.  I may be  reached on the PCBoard, Doors, OffLine
  148.               conferences on City2City(tm), Intelec(tm), and  ILink(tm).  I
  149.               also monitor the PCBNet conference on FidoNet(tm). I can also
  150.               be reach  on my  support BBS  or by  snail-mail to  the above
  151.               address. Registered users of any one of my shareware packages
  152.               may contact me  using the  voice number  in the  registration
  153.               document.
  154.  
  155.               Since  this is user supported software, I don't expect you to
  156.               register if  you don't  like it  or if  it doesn't  meet your
  157.               needs.  Just stop using  it after  a reasonable  trial period
  158.               (1-2 weeks). The program is not crippled in any way, there is
  159.               only a short delay at the start of the program.
  160.  
  161.               If you like the program and use it regularly, please register
  162.               it. The registration cost is a  one-time fee of $10.00.  With
  163.               the  registration you'll receive  unlimited voice support and
  164.               upgrades. Your registration  encourages further  development,
  165.               enhancement and my continued support of the product.   Please
  166.               send your registration in the form of a Money Order, Personal
  167.               cheque,  or Cashier's cheque to the above address.  I'm sorry
  168.               that I cannot process credit card registrations at this time.
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.               _____________________________________________________________
  184.               QPack - On-Demand QMail Prepack - Documentation .......... 3
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.               ═════[STANDARD DISCLAIMER]═══════════════════════════════════
  193.               This program is  provided on an "AS IS" basis. No warranty of
  194.               any kind is  expressed or  implied. YOU USE  THIS PROGRAM  AT
  195.               YOUR OWN RISK. I take no responsibility for any damage caused
  196.               directly or indirectly from  the use or the inability  to use
  197.               this program.
  198.  
  199.               ═════[CREDITS/COPYRIGHTS]════════════════════════════════════
  200.               QWK, QMail4:
  201.                  Copyrights of Mark "Sparky" Herring of Sparkware, the     
  202.                  original creator of QWK.
  203.  
  204.               PCBoard:
  205.                  Clarke Development Company, Inc.
  206.  
  207.               Other:
  208.                  Respected copyright holders.
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.               _____________________________________________________________
  245.               QPack - On-Demand QMail Prepack - Documentation .......... 4
  246.